home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / dragracer.swf / scripts / DefineButton2_1623 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-10-06  |  435 b   |  17 lines

  1. on(release){
  2.    if(_root.player.cash - cost >= 0)
  3.    {
  4.       _root.player.cash -= cost;
  5.       _root.buyItem(_root.car,"CL",upCL);
  6.       _root.buyItem(_root.car,"TQ",upTQ);
  7.       _root.buyItem(_root.car,"WT",upWT);
  8.       _root.buyItem(_root.car,"HP",upHP);
  9.       _root.car["UPGRADE" add i] = true;
  10.       _root.attachMovie("WRENCH","wrench111",747);
  11.    }
  12.    else
  13.    {
  14.       _root.prompt("E","Not Enough Cash!",3);
  15.    }
  16. }
  17.